bea162349542c67eb67641b2f5776ef0583b8d44,core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/CharSprite.java,CharSprite,showStatus,#number#String#Object#,148
Before Change
if (args.length > 0) {
text = Messages.format( text, args );
}
FloatingText.show( x + width * 0.5f, y, text, color );
}
}
After Change
if (args.length > 0) {
text = Messages.format( text, args );
}
if (ch != null) {
FloatingText.show( x + width * 0.5f, y, ch.pos, text, color );
} else {
FloatingText.show( x + width * 0.5f, y, text, color );
}
}
}